







[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]
Returns an enumerator that enumerates all the items in the bag.
The items are enumerated in sorted order.
Namespace: Wintellect.PowerCollections
Assembly:
PowerCollections (in PowerCollections.dll)
Syntax
C# |
---|
public override sealed IEnumerator<T> GetEnumerator() |
Visual Basic (Declaration) |
---|
Public Overrides NotOverridable Function GetEnumerator As IEnumerator(Of T) |
Visual C++ |
---|
public: virtual IEnumerator<T>^ GetEnumerator () override sealed |
Return Value
An enumerator for enumerating all the items in the OrderedBag.
Remarks
Typically, this method is not called directly. Instead the "foreach" statement is used to enumerate the items, which uses this method implicitly.
If an item is added to or deleted from the bag while it is being enumerated, then the enumeration will end with an InvalidOperationException.
Enumeration all the items in the bag takes time O(N), where N is the number of items in the bag.
See Also
OrderedBag<(Of <T>)> Class
Wintellect.PowerCollections Namespace